home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DTP / DTP_TEX / H220.ZIP / ITRNS211.ZIP / SRC / LEXYYC < prev    next >
Text File  |  1991-12-14  |  58KB  |  1,976 lines

  1. /* A lexical scanner generated by flex */
  2.  
  3. /* scanner skeleton version:
  4.  * $Header: /usr/fsys/odin/a/vern/flex/RCS/flex.skel,v 2.16 90/08/03 14:09:36 vern Exp $
  5.  */
  6.  
  7. #define FLEX_SCANNER
  8.  
  9. #include <stdio.h>
  10.  
  11.  
  12. /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
  13. #ifdef c_plusplus
  14. #ifndef __cplusplus
  15. #define __cplusplus
  16. #endif
  17. #endif
  18.  
  19.  
  20. #ifdef __cplusplus
  21.  
  22. #include <stdlib.h>
  23. #include <osfcn.h>
  24.  
  25. /* use prototypes in function declarations */
  26. #define YY_USE_PROTOS
  27.  
  28. /* the "const" storage-class-modifier is valid */
  29. #define YY_USE_CONST
  30.  
  31. #else    /* ! __cplusplus */
  32.  
  33. #ifdef __STDC__
  34.  
  35. #ifdef __GNUC__
  36. #include <stddef.h>
  37. void *malloc( size_t );
  38. void free( void* );
  39. #else
  40. #include <stdlib.h>
  41. #endif    /* __GNUC__ */
  42.  
  43. #define YY_USE_PROTOS
  44. #define YY_USE_CONST
  45.  
  46. #endif    /* __STDC__ */
  47. #endif    /* ! __cplusplus */
  48.  
  49.  
  50. #ifdef __TURBOC__
  51. #define YY_USE_CONST
  52. #endif
  53.  
  54.  
  55. #ifndef YY_USE_CONST
  56. #define const
  57. #endif
  58.  
  59.  
  60. #ifdef YY_USE_PROTOS
  61. #define YY_PROTO(proto) proto
  62. #else
  63. #define YY_PROTO(proto) ()
  64. /* we can't get here if it's an ANSI C compiler, or a C++ compiler,
  65.  * so it's got to be a K&R compiler, and therefore there's no standard
  66.  * place from which to include these definitions
  67.  */
  68. char *malloc();
  69. int free();
  70. int read();
  71. #endif
  72.  
  73.  
  74. /* amount of stuff to slurp up with each read */
  75. #ifndef YY_READ_BUF_SIZE
  76. #define YY_READ_BUF_SIZE 8192
  77. #endif
  78.  
  79. /* returned upon end-of-file */
  80. #define YY_END_TOK 0
  81.  
  82. /* copy whatever the last rule matched to the standard output */
  83.  
  84. /* cast to (char *) is because for 8-bit chars, yytext is (unsigned char *) */
  85. /* this used to be an fputs(), but since the string might contain NUL's,
  86.  * we now use fwrite()
  87.  */
  88. #define ECHO (void) fwrite( (char *) yytext, yyleng, 1, yyout )
  89.  
  90. /* gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
  91.  * is returned in "result".
  92.  */
  93. #define YY_INPUT(buf,result,max_size) \
  94.     if ( (result = read( fileno(yyin), (char *) buf, max_size )) < 0 ) \
  95.         YY_FATAL_ERROR( "read() in flex scanner failed" );
  96. #define YY_NULL 0
  97.  
  98. /* no semi-colon after return; correct usage is to write "yyterminate();" -
  99.  * we don't want an extra ';' after the "return" because that will cause
  100.  * some compilers to complain about unreachable statements.
  101.  */
  102. #define yyterminate() return ( YY_NULL )
  103.  
  104. /* report a fatal error */
  105.  
  106. /* The funky do-while is used to turn this macro definition into
  107.  * a single C statement (which needs a semi-colon terminator).
  108.  * This avoids problems with code like:
  109.  *
  110.  *     if ( something_happens )
  111.  *        YY_FATAL_ERROR( "oops, the something happened" );
  112.  *    else
  113.  *        everything_okay();
  114.  *
  115.  * Prior to using the do-while the compiler would get upset at the
  116.  * "else" because it interpreted the "if" statement as being all
  117.  * done when it reached the ';' after the YY_FATAL_ERROR() call.
  118.  */
  119.  
  120. #define YY_FATAL_ERROR(msg) \
  121.     do \
  122.         { \
  123.         (void) fputs( msg, stderr ); \
  124.         (void) putc( '\n', stderr ); \
  125.         exit( 1 ); \
  126.         } \
  127.     while ( 0 )
  128.  
  129. /* default yywrap function - always treat EOF as an EOF */
  130. #define yywrap() 1
  131.  
  132. /* enter a start condition.  This macro really ought to take a parameter,
  133.  * but we do it the disgusting crufty way forced on us by the ()-less
  134.  * definition of BEGIN
  135.  */
  136. #define BEGIN yy_start = 1 + 2 *
  137.  
  138. /* action number for EOF rule of a given start state */
  139. #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
  140.  
  141. /* special action meaning "start processing a new file" */
  142. #define YY_NEW_FILE \
  143.     do \
  144.         { \
  145.         yy_init_buffer( yy_current_buffer, yyin ); \
  146.         yy_load_buffer_state(); \
  147.         } \
  148.     while ( 0 )
  149.  
  150. /* default declaration of generated scanner - a define so the user can
  151.  * easily add parameters
  152.  */
  153. #define YY_DECL int yylex YY_PROTO(( void )) 
  154.  
  155. /* code executed at the end of each rule */
  156. #define YY_BREAK break;
  157.  
  158. #define YY_END_OF_BUFFER_CHAR 0
  159.  
  160. #ifndef YY_BUF_SIZE
  161. #define YY_BUF_SIZE (YY_READ_BUF_SIZE * 2) /* size of default input buffer */
  162. #endif
  163.  
  164. typedef struct yy_buffer_state *YY_BUFFER_STATE;
  165.  
  166. #define YY_CHAR char
  167. # line 1 "ilex.l"
  168. #define INITIAL 0
  169. # line 6 "ilex.l"
  170. /* above directives increase the various table sizes used by Lex */
  171.  
  172. /*
  173.  *========================================================================== 
  174.  * Copyright 1991 Avinash Chopde, All Rights Reserved.
  175.  *
  176.  * Permission to use, copy, modify and distribute this software and its
  177.  * documentation for any purpose is hereby granted without fee, provided that
  178.  * the above copyright notice appear in all copies and that both that
  179.  * copyright notice and this permission notice appear in supporting
  180.  * documentation, and that the name of Avinash Chopde not be used in
  181.  * advertising or publicity pertaining to distribution of the software
  182.  * without specific, written prior permission.
  183.  * Avinash Chopde makes no representations about the suitability of this
  184.  * software for any purpose.
  185.  * It is provided "as is" without express or implied warranty.
  186.  *
  187.  * AVINASH CHOPDE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  188.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
  189.  * IN NO EVENT SHALL AVINASH CHOPDE BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  190.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  191.  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  192.  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  193.  * OF THIS SOFTWARE.
  194.  *
  195.  * Author:  Avinash Chopde, 1991
  196.  *        C2 Colonial Drive #4, Andover, MA 01810, USA.
  197.  *
  198.  */
  199.  
  200. static char S_RCSID[] = "$Header: e:/itrans/src/rcs/ilex.l 1.8 91/10/15 00:13:49 avinash Exp $";
  201.  
  202. #include "itrans.h"
  203. #include "ifm.h"
  204.  
  205. #ifdef MSDOS
  206. #include "y_tab.h"
  207. #else
  208. #include "y.tab.h"
  209. #endif
  210.  
  211. #ifdef YYSTYPE
  212. extern YYSTYPE  yylval;
  213. #else
  214. extern int yylval;
  215. #endif
  216.  
  217. extern int G_lineno;
  218. extern int in_letter(); /* returns TRUE if the parse (iyacc.y) is in the
  219.              * middle of scanning some letter.
  220.              * Used to decide whether to tell the parser to
  221.              * stop looking for more characters, and
  222.              * terminate the letter.
  223.              * That is done by sending in a ENDPREV_TOK.
  224.              */
  225. extern char G_endprev_str[]; /* defined in iyacc.y, used to pass string
  226.                   * to process
  227.                   */
  228.  
  229. static S_lex_ichar(int t);
  230. static S_print(char* t);
  231. static S_skipcomments();
  232.  
  233. static int    S_lang_tok = -1; /* which language being scanned... */
  234.  
  235. #define ITEXT 1
  236. #define DCOMMAND 2
  237. # line 74 "ilex.l"
  238.  
  239. /* done after the current pattern has been matched and before the
  240.  * corresponding action - sets up yytext
  241.  */
  242. #define YY_DO_BEFORE_ACTION \
  243.     yytext = yy_bp; \
  244.     yyleng = yy_cp - yy_bp; \
  245.     yy_hold_char = *yy_cp; \
  246.     *yy_cp = '\0'; \
  247.     yy_c_buf_p = yy_cp;
  248.  
  249. #define EOB_ACT_CONTINUE_SCAN 0
  250. #define EOB_ACT_END_OF_FILE 1
  251. #define EOB_ACT_LAST_MATCH 2
  252.  
  253. /* return all but the first 'n' matched characters back to the input stream */
  254. #define yyless(n) \
  255.     do \
  256.         { \
  257.         /* undo effects of setting up yytext */ \
  258.         *yy_cp = yy_hold_char; \
  259.         yy_c_buf_p = yy_cp = yy_bp + n; \
  260.         YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  261.         } \
  262.     while ( 0 )
  263.  
  264. #define unput(c) yyunput( c, yytext )
  265.  
  266.  
  267. struct yy_buffer_state
  268.     {
  269.     FILE *yy_input_file;
  270.  
  271.     YY_CHAR *yy_ch_buf;        /* input buffer */
  272.     YY_CHAR *yy_buf_pos;    /* current position in input buffer */
  273.  
  274.     /* size of input buffer in bytes, not including room for EOB characters*/
  275.     int yy_buf_size;    
  276.  
  277.     /* number of characters read into yy_ch_buf, not including EOB characters */
  278.     int yy_n_chars;
  279.  
  280.     int yy_eof_status;        /* whether we've seen an EOF on this buffer */
  281. #define EOF_NOT_SEEN 0
  282.     /* "pending" happens when the EOF has been seen but there's still
  283.      * some text process
  284.      */
  285. #define EOF_PENDING 1
  286. #define EOF_DONE 2
  287.     };
  288.  
  289. static YY_BUFFER_STATE yy_current_buffer;
  290.  
  291. /* we provide macros for accessing buffer states in case in the
  292.  * future we want to put the buffer states in a more general
  293.  * "scanner state"
  294.  */
  295. #define YY_CURRENT_BUFFER yy_current_buffer
  296.  
  297.  
  298. /* yy_hold_char holds the character lost when yytext is formed */
  299. static YY_CHAR yy_hold_char;
  300.  
  301. static int yy_n_chars;        /* number of characters read into yy_ch_buf */
  302.  
  303.  
  304.  
  305. #ifndef YY_USER_ACTION
  306. #define YY_USER_ACTION
  307. #endif
  308.  
  309. #ifndef YY_USER_INIT
  310. #define YY_USER_INIT
  311. #endif
  312.  
  313. extern YY_CHAR *yytext;
  314. extern int yyleng;
  315. extern FILE *yyin, *yyout;
  316.  
  317. YY_CHAR *yytext;
  318. int yyleng;
  319.  
  320. FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
  321.  
  322. #define YY_END_OF_BUFFER 135
  323. typedef int yy_state_type;
  324. static const short int yy_accept[395] =
  325.     {   0,
  326.         0,    0,    0,    0,    0,    0,  135,  133,  132,    4,
  327.       133,   85,   82,   83,    3,   85,    7,   42,   19,   32,
  328.        25,   10,   29,   66,   46,   22,   73,   85,   40,   12,
  329.         2,    5,   56,   85,   49,   18,   54,   31,   64,    8,
  330.        36,   26,   67,   57,   51,   21,   52,   27,   59,   63,
  331.        47,   11,   60,   69,   58,   37,   85,   87,    4,   86,
  332.        87,    1,    0,    0,    0,    0,    0,    0,    0,    0,
  333.         0,    0,   80,   43,   81,   79,   78,   77,   76,    0,
  334.        44,   17,   16,   15,   14,    0,   41,   24,    6,   20,
  335.        23,   55,   35,   50,   30,   70,    9,   38,   39,   28,
  336.  
  337.         0,   65,   72,   33,   71,   53,   62,   48,   13,   84,
  338.        86,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  339.         0,    0,   45,   74,   75,   34,   68,   61,    0,    0,
  340.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  341.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  342.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  343.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  344.         0,    0,   92,    0,    0,    0,    0,  106,    0,   94,
  345.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  346.         0,    0,    0,    0,   92,    0,    0,   88,    0,    0,
  347.  
  348.         0,  106,    0,    0,    0,   94,    0,    0,  100,   98,
  349.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  350.         0,    0,    0,    0,   88,    0,    0,  108,    0,   90,
  351.         0,    0,    0,    0,    0,  100,    0,    0,   98,    0,
  352.         0,    0,    0,   93,    0,    0,    0,    0,  107,    0,
  353.        95,    0,  104,    0,    0,    0,    0,  108,    0,    0,
  354.         0,   90,    0,    0,    0,    0,   96,    0,    0,    0,
  355.         0,    0,    0,    0,    0,   93,   89,    0,    0,    0,
  356.       107,    0,   95,  101,  104,    0,    0,    0,  112,    0,
  357.         0,    0,    0,  102,    0,    0,    0,  119,   96,    0,
  358.  
  359.         0,    0,  113,    0,    0,    0,    0,   99,    0,   89,
  360.       109,    0,   91,    0,  101,    0,    0,  122,  112,    0,
  361.       110,    0,    0,  102,    0,    0,    0,    0,  130,  119,
  362.         0,    0,  123,  113,    0,  116,    0,  115,   99,  105,
  363.       109,    0,   91,   97,    0,    0,  122,  121,  110,    0,
  364.       120,    0,    0,    0,  111,  130,    0,    0,  123,  127,
  365.       116,  126,  115,  105,  103,   97,    0,  118,  121,  131,
  366.       120,    0,    0,  124,  111,    0,  114,  127,  126,  103,
  367.       129,  118,  131,    0,  117,  124,  125,  114,  129,  128,
  368.       117,  125,  128,    0
  369.  
  370.     } ;
  371.  
  372. static const YY_CHAR yy_ec[128] =
  373.     {   0,
  374.         1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
  375.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  376.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  377.         1,    2,    1,    1,    1,    1,    4,    1,    1,    1,
  378.         1,    1,    1,    1,    5,    6,    1,    5,    5,    5,
  379.         5,    5,    5,    5,    5,    5,    5,    1,    1,    1,
  380.         7,    1,    1,    1,    8,    9,   10,   11,   12,    9,
  381.        13,   14,   15,    9,   16,   17,   18,   19,   20,    9,
  382.         9,   21,   22,   23,   24,    9,    9,    9,    9,    9,
  383.         1,   25,    1,   26,   27,    1,   28,   29,   30,   31,
  384.  
  385.        32,   33,   34,   35,   36,   37,   38,   39,   40,   41,
  386.        42,   43,   44,   45,   46,   47,   48,   49,    9,   50,
  387.        51,   52,   53,    1,   54,    1,    1
  388.     } ;
  389.  
  390. static const YY_CHAR yy_meta[55] =
  391.     {   0,
  392.         1,    1,    1,    1,    2,    2,    1,    2,    2,    2,
  393.         2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
  394.         2,    2,    2,    2,    3,    1,    4,    2,    2,    2,
  395.         2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
  396.         2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
  397.         2,    2,    1,    1
  398.     } ;
  399.  
  400. static const short int yy_base[420] =
  401.     {   0,
  402.         0,    2,   27,    0,   81,  135,  496,  497,  497,  497,
  403.       186,  497,  497,  497,  497,   81,  471,  459,  497,  497,
  404.       497,  497,  497,   74,  497,  497,   78,  472,  457,  497,
  405.         0,   76,  456,  455,  454,  497,  497,   62,  497,  452,
  406.        55,   82,  456,  497,   69,  497,  451,  497,  497,  450,
  407.       449,  435,  497,  497,  497,  497,  428,  497,  497,    0,
  408.         0,  497,  449,  439,  431,  442,  436,  448,  447,  429,
  409.       445,   70,  497,  437,  497,  497,  497,  497,  497,  453,
  410.       497,  497,  497,  497,  497,  455,  497,  497,  497,  497,
  411.       497,  497,  434,  497,  497,  497,  497,  497,  497,  497,
  412.  
  413.       433,  497,  497,  497,  497,  497,  432,  497,  497,  497,
  414.         0,  425,  434,  427,  422,  431,  420,   60,  424,  418,
  415.       418,  418,  497,  497,  497,  497,  497,  497,  422,  205,
  416.       427,  423,  417,  411,  423,  422,  398,  402,  411,  398,
  417.       417,  412,  395,  406,  400,  412,  411,  393,  409,   87,
  418.       391,  399,  406,  405,  381,  384,  402,  391,  389,  393,
  419.       387,  384,  387,  382,  391,  380,   82,  384,  378,  378,
  420.       378,  388,  116,  374,  383,  385,  377,  121,  366,  123,
  421.       362,  373,  374,  379,  375,  369,  363,  375,  374,  350,
  422.       354,  363,  350,  350,  394,  353,  361,  130,  365,  353,
  423.  
  424.       355,  388,  347,  355,  351,  384,  343,  351,  131,  141,
  425.       355,  337,  345,  352,  351,  327,  330,  348,  337,  335,
  426.       339,  336,  330,  330,  367,  326,  334,  142,  338,  143,
  427.       324,  324,  316,  321,  321,  358,  317,  325,  355,  314,
  428.       322,  315,  325,  350,  310,  319,  321,  313,  345,  301,
  429.       343,  296,  148,  296,  335,  300,  300,  337,  296,  304,
  430.       296,  333,  292,  300,  285,  324,  149,  283,  322,  287,
  431.       287,  278,  273,  268,  248,  290,  284,  255,  235,  232,
  432.       263,  226,  248,  247,  246,  204,  211,  235,    0,  191,
  433.       230,  195,  195,  163,  190,  190,  222,    0,  225,  183,
  434.  
  435.       190,  212,    0,  170,  209,  167,  206,  210,  175,  208,
  436.       207,  180,  205,  159,  203,  163,  163,    0,    0,  195,
  437.         0,  154,  193,  196,  155,  162,  147,  186,    0,    0,
  438.       151,  151,    0,    0,  180,    0,  179,    0,  181,  178,
  439.       171,  132,  169,  168,  122,  161,    0,    0,    0,  151,
  440.         0,  114,  113,  141,    0,    0,  100,  139,    0,    0,
  441.         0,    0,    0,  129,  128,  127,   94,    0,    0,    0,
  442.         0,   53,    3,    0,    0,    2,    0,    0,    0,    6,
  443.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  444.         0,    0,    0,  497,  252,  256,    0,  259,  262,  265,
  445.  
  446.       268,  271,  274,  277,  280,  283,  286,  289,  292,  295,
  447.       298,  301,  304,  307,  310,  313,  316,  319,  322
  448.     } ;
  449.  
  450. static const short int yy_def[420] =
  451.     {   0,
  452.       395,  395,  394,    3,  396,  396,  394,  394,  394,  394,
  453.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  454.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  455.        11,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  456.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  457.       394,  394,  394,  394,  394,  394,  394,  394,  394,  397,
  458.        11,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  459.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  460.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  461.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  462.  
  463.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  464.       397,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  465.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  466.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  467.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  468.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  469.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  470.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  471.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  472.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  473.  
  474.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  475.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  476.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  477.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  478.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  479.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  480.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  481.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  482.       394,  394,  394,  394,  394,  394,  394,  394,  398,  394,
  483.       394,  394,  394,  394,  394,  394,  394,  399,  394,  394,
  484.  
  485.       394,  394,  400,  394,  394,  394,  394,  394,  394,  394,
  486.       394,  394,  394,  394,  394,  394,  394,  401,  398,  394,
  487.       402,  394,  394,  394,  394,  394,  394,  394,  403,  399,
  488.       394,  394,  404,  400,  394,  405,  394,  406,  394,  394,
  489.       394,  394,  394,  394,  394,  394,  401,  407,  402,  394,
  490.       408,  394,  394,  394,  409,  403,  394,  394,  404,  410,
  491.       405,  411,  406,  394,  394,  394,  394,  412,  407,  413,
  492.       408,  394,  394,  414,  409,  394,  415,  410,  411,  394,
  493.       416,  412,  413,  394,  417,  414,  418,  415,  416,  419,
  494.       417,  418,  419,    0,  394,  394,  394,  394,  394,  394,
  495.  
  496.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  497.       394,  394,  394,  394,  394,  394,  394,  394,  394
  498.     } ;
  499.  
  500. static const short int yy_nxt[552] =
  501.     {   0,
  502.       394,  111,    9,   10,    9,   10,  390,  380,  387,  385,
  503.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  504.       394,  394,  394,  394,   11,  394,   11,   12,   13,   14,
  505.        15,   12,   16,   12,   17,   12,   12,   18,   19,   20,
  506.        21,   22,   23,   24,   12,   25,   26,   27,   28,   29,
  507.        30,   31,   12,   12,   32,   33,   34,   35,   36,   37,
  508.        38,   39,   40,   41,   42,   43,   44,   45,   46,   47,
  509.        48,   49,   50,   51,   52,   53,   54,   55,   56,   57,
  510.        12,   58,   58,    9,   59,   58,   58,   58,   82,   98,
  511.        73,   74,   84,   88,  103,   99,   95,  121,  135,  384,
  512.  
  513.       381,  122,  104,   89,  136,   61,   58,   58,   75,   83,
  514.        76,   90,   96,   85,  170,   77,  100,  195,  171,  105,
  515.       188,   78,  202,   91,  206,   79,  189,  101,  366,  380,
  516.       364,  225,  236,   58,   58,   58,   58,    9,   59,   58,
  517.        58,   58,  239,  258,  262,  377,  376,  374,  196,  285,
  518.       299,  197,  373,  203,  372,  207,  204,  370,  208,   61,
  519.        58,   58,  226,  237,  324,  227,  238,  368,  367,  366,
  520.       343,  365,  341,  240,  259,  263,  241,  260,  264,  364,
  521.       286,  300,  339,  287,  301,  362,  360,   58,   58,   62,
  522.       358,  357,  355,  354,  353,  325,  352,  324,  326,  351,
  523.  
  524.       350,  348,  346,  345,  315,  344,  343,  342,  341,  310,
  525.       340,  339,  338,  337,   63,  336,  335,   64,  333,   65,
  526.        66,   67,  332,   68,  331,   69,  299,   70,  329,  328,
  527.       327,   71,   72,  142,  323,  322,  321,  320,  143,  144,
  528.       145,  318,  146,  317,  147,  316,  148,  285,  315,  283,
  529.       149,  150,    8,    8,    8,    8,   60,   60,   60,   60,
  530.       319,  314,  319,  330,  281,  330,  334,  313,  334,  347,
  531.       347,  347,  349,  312,  349,  356,  356,  356,  359,  359,
  532.       359,  361,  311,  361,  363,  310,  363,  369,  369,  369,
  533.       371,  276,  371,  375,  309,  375,  378,  378,  378,  379,
  534.  
  535.       379,  379,  382,  308,  382,  383,  383,  383,  386,  386,
  536.       386,  388,  307,  388,  389,  389,  389,  391,  306,  391,
  537.       392,  392,  392,  393,  393,  393,  305,  304,  303,  302,
  538.       298,  297,  296,  295,  262,  294,  293,  292,  258,  291,
  539.       290,  289,  288,  284,  283,  282,  281,  280,  279,  278,
  540.       277,  276,  275,  274,  273,  272,  239,  271,  270,  236,
  541.       269,  268,  267,  266,  265,  261,  257,  256,  225,  255,
  542.       254,  253,  252,  251,  250,  249,  248,  247,  246,  245,
  543.       244,  243,  242,  235,  234,  206,  233,  232,  231,  202,
  544.       230,  229,  228,  224,  223,  195,  222,  221,  220,  219,
  545.  
  546.       218,  217,  216,  215,  214,  213,  212,  211,  210,  209,
  547.       205,  201,  200,  199,  198,  194,  193,  192,  191,  190,
  548.       187,  186,  185,  184,  183,  182,  181,  180,  179,  178,
  549.       177,  176,  175,  174,  173,  172,  169,  168,  167,  166,
  550.       165,  164,  163,  162,  161,  160,  159,  158,  157,  156,
  551.       155,  154,  153,  152,  151,  141,  140,  139,  138,  137,
  552.       134,  133,  132,  131,  130,  129,  128,  127,  126,  125,
  553.       124,  123,  120,  119,  118,  117,  116,  115,  114,  113,
  554.       112,  110,  109,  108,  107,  106,  102,   97,   94,   93,
  555.        92,   87,   86,   81,   80,  394,    7,  394,  394,  394,
  556.  
  557.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  558.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  559.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  560.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  561.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  562.       394
  563.     } ;
  564.  
  565. static const short int yy_chk[552] =
  566.     {   0,
  567.         0,  397,    1,    1,    2,    2,  384,  380,  376,  373,
  568.         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  569.         0,    0,    0,    0,    1,    0,    2,    3,    3,    3,
  570.         3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
  571.         3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
  572.         3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
  573.         3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
  574.         3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
  575.         3,    5,    5,    5,    5,    5,    5,    5,   24,   41,
  576.        16,   16,   27,   32,   45,   41,   38,   72,  118,  372,
  577.  
  578.       367,   72,   45,   32,  118,    5,    5,    5,   16,   24,
  579.        16,   32,   38,   27,  150,   16,   42,  173,  150,   45,
  580.       167,   16,  178,   32,  180,   16,  167,   42,  366,  365,
  581.       364,  198,  209,    5,    5,    6,    6,    6,    6,    6,
  582.         6,    6,  210,  228,  230,  358,  357,  354,  173,  253,
  583.       267,  173,  353,  178,  352,  180,  178,  350,  180,    6,
  584.         6,    6,  198,  209,  294,  198,  209,  346,  345,  344,
  585.       343,  342,  341,  210,  228,  230,  210,  228,  230,  340,
  586.       253,  267,  339,  253,  267,  337,  335,    6,    6,   11,
  587.       332,  331,  328,  327,  326,  294,  325,  324,  294,  323,
  588.  
  589.       322,  320,  317,  316,  315,  314,  313,  312,  311,  310,
  590.       309,  308,  307,  306,   11,  305,  304,   11,  302,   11,
  591.        11,   11,  301,   11,  300,   11,  299,   11,  297,  296,
  592.       295,   11,   11,  130,  293,  292,  291,  290,  130,  130,
  593.       130,  288,  130,  287,  130,  286,  130,  285,  284,  283,
  594.       130,  130,  395,  395,  395,  395,  396,  396,  396,  396,
  595.       398,  282,  398,  399,  281,  399,  400,  280,  400,  401,
  596.       401,  401,  402,  279,  402,  403,  403,  403,  404,  404,
  597.       404,  405,  278,  405,  406,  277,  406,  407,  407,  407,
  598.       408,  276,  408,  409,  275,  409,  410,  410,  410,  411,
  599.  
  600.       411,  411,  412,  274,  412,  413,  413,  413,  414,  414,
  601.       414,  415,  273,  415,  416,  416,  416,  417,  272,  417,
  602.       418,  418,  418,  419,  419,  419,  271,  270,  269,  268,
  603.       266,  265,  264,  263,  262,  261,  260,  259,  258,  257,
  604.       256,  255,  254,  252,  251,  250,  249,  248,  247,  246,
  605.       245,  244,  243,  242,  241,  240,  239,  238,  237,  236,
  606.       235,  234,  233,  232,  231,  229,  227,  226,  225,  224,
  607.       223,  222,  221,  220,  219,  218,  217,  216,  215,  214,
  608.       213,  212,  211,  208,  207,  206,  205,  204,  203,  202,
  609.       201,  200,  199,  197,  196,  195,  194,  193,  192,  191,
  610.  
  611.       190,  189,  188,  187,  186,  185,  184,  183,  182,  181,
  612.       179,  177,  176,  175,  174,  172,  171,  170,  169,  168,
  613.       166,  165,  164,  163,  162,  161,  160,  159,  158,  157,
  614.       156,  155,  154,  153,  152,  151,  149,  148,  147,  146,
  615.       145,  144,  143,  142,  141,  140,  139,  138,  137,  136,
  616.       135,  134,  133,  132,  131,  129,  122,  121,  120,  119,
  617.       117,  116,  115,  114,  113,  112,  107,  101,   93,   86,
  618.        80,   74,   71,   70,   69,   68,   67,   66,   65,   64,
  619.        63,   57,   52,   51,   50,   47,   43,   40,   35,   34,
  620.        33,   29,   28,   18,   17,    7,  394,  394,  394,  394,
  621.  
  622.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  623.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  624.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  625.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  626.       394,  394,  394,  394,  394,  394,  394,  394,  394,  394,
  627.       394
  628.     } ;
  629.  
  630. static yy_state_type yy_last_accepting_state;
  631. static YY_CHAR *yy_last_accepting_cpos;
  632.  
  633. /* the intent behind this definition is that it'll catch
  634.  * any uses of REJECT which flex missed
  635.  */
  636. #define REJECT reject_used_but_not_detected
  637. #define yymore() yymore_used_but_not_detected
  638. #define YY_MORE_ADJ 0
  639.  
  640. /* these variables are all declared out here so that section 3 code can
  641.  * manipulate them
  642.  */
  643. /* points to current character in buffer */
  644. static YY_CHAR *yy_c_buf_p = (YY_CHAR *) 0;
  645. static int yy_init = 1;        /* whether we need to initialize */
  646. static int yy_start = 0;    /* start state number */
  647.  
  648. /* flag which is used to allow yywrap()'s to do buffer switches
  649.  * instead of setting up a fresh yyin.  A bit of a hack ...
  650.  */
  651. static int yy_did_buffer_switch_on_eof;
  652.  
  653. static yy_state_type yy_get_previous_state YY_PROTO(( void ));
  654. static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
  655. static int yy_get_next_buffer YY_PROTO(( void ));
  656. static void yyunput YY_PROTO(( YY_CHAR c, YY_CHAR *buf_ptr ));
  657. void yyrestart YY_PROTO(( FILE *input_file ));
  658. void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
  659. void yy_load_buffer_state YY_PROTO(( void ));
  660. YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
  661. void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
  662. void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
  663.  
  664. #define yy_new_buffer yy_create_buffer
  665.  
  666. #ifdef __cplusplus
  667. static int yyinput YY_PROTO(( void ));
  668. #else
  669. static int input YY_PROTO(( void ));
  670. #endif
  671.  
  672. YY_DECL
  673.     {
  674.     register yy_state_type yy_current_state;
  675.     register YY_CHAR *yy_cp, *yy_bp;
  676.     register int yy_act;
  677.  
  678.  
  679.  
  680.  
  681.     if ( yy_init )
  682.     {
  683.     YY_USER_INIT;
  684.  
  685.     if ( ! yy_start )
  686.         yy_start = 1;    /* first start state */
  687.  
  688.     if ( ! yyin )
  689.         yyin = stdin;
  690.  
  691.     if ( ! yyout )
  692.         yyout = stdout;
  693.  
  694.     if ( yy_current_buffer )
  695.         yy_init_buffer( yy_current_buffer, yyin );
  696.     else
  697.         yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );
  698.  
  699.     yy_load_buffer_state();
  700.  
  701.     yy_init = 0;
  702.     }
  703.  
  704.     while ( 1 )        /* loops until end-of-file is reached */
  705.     {
  706.     yy_cp = yy_c_buf_p;
  707.  
  708.     /* support of yytext */
  709.     *yy_cp = yy_hold_char;
  710.  
  711.     /* yy_bp points to the position in yy_ch_buf of the start of the
  712.      * current run.
  713.      */
  714.     yy_bp = yy_cp;
  715.  
  716.     yy_current_state = yy_start;
  717. yy_match:
  718.     do
  719.         {
  720.         register YY_CHAR yy_c = yy_ec[*yy_cp];
  721.         if ( yy_accept[yy_current_state] )
  722.         {
  723.         yy_last_accepting_state = yy_current_state;
  724.         yy_last_accepting_cpos = yy_cp;
  725.         }
  726.         while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  727.         {
  728.         yy_current_state = yy_def[yy_current_state];
  729.         if ( yy_current_state >= 395 )
  730.             yy_c = yy_meta[yy_c];
  731.         }
  732.         yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  733.         ++yy_cp;
  734.         }
  735.     while ( yy_current_state != 394 );
  736.     yy_cp = yy_last_accepting_cpos;
  737.     yy_current_state = yy_last_accepting_state;
  738.  
  739. yy_find_action:
  740.     yy_act = yy_accept[yy_current_state];
  741.  
  742.     YY_DO_BEFORE_ACTION;
  743.     YY_USER_ACTION;
  744.  
  745. do_action:    /* this label is used only to access EOF actions */
  746.  
  747.  
  748.     switch ( yy_act )
  749.         {
  750.         case 0: /* must backtrack */
  751.         /* undo the effects of YY_DO_BEFORE_ACTION */
  752.         *yy_cp = yy_hold_char;
  753.         yy_cp = yy_last_accepting_cpos;
  754.         yy_current_state = yy_last_accepting_state;
  755.         goto yy_find_action;
  756.  
  757. case 1:
  758. # line 76 "ilex.l"
  759. {   
  760.               /* seen \% in the input, complete current
  761.                * word first, and then echo out
  762.                * the chars in G_endprev_str.
  763.                */
  764.                 if (in_letter()) {
  765.                 S_print("ichar \\ %");
  766.                 strcpy(G_endprev_str, "\\%");
  767.                 return (yylval=ENDPREV_TOK);
  768.                 } else {
  769.                 ECHO;
  770.                 }
  771.             }
  772.     YY_BREAK
  773. case 2:
  774. # line 90 "ilex.l"
  775. {   
  776.                /* seen a single backslash */
  777.                if (in_letter()) {
  778.                 /* need to complete current word, send
  779.                  * a ENDPREV token to the parser.
  780.                  */
  781.                 S_print("ichar \\");
  782.                 /* unput('\\');   ?? use yyless() here */
  783.                     yyless(0);
  784.                     G_endprev_str[0] = '\0';
  785.                     return (yylval=ENDPREV_TOK);
  786.                 } else {
  787.                 BEGIN  DCOMMAND;
  788.                 }
  789.             }
  790.     YY_BREAK
  791. case 3:
  792. # line 106 "ilex.l"
  793. { S_print("ichar %");
  794.                   if (in_letter()) {
  795.                 /* need to complete current word, send
  796.                  * a ENDPREV token to the parser.
  797.                  */
  798.                  /* unput('%'); handle comment next time around */
  799.                  yyless(0);
  800.               }
  801.               return S_skipcomments();
  802.               /* is a comment, until end-of-line */
  803.             }
  804.     YY_BREAK
  805. case 4:
  806. # line 118 "ilex.l"
  807. { S_skipcomments(); putchar('\n'); }
  808.     YY_BREAK
  809. case 5:
  810. # line 120 "ilex.l"
  811. {S_lex_ichar(A_TOK); return (yylval =  A_TOK);    }
  812.     YY_BREAK
  813. case 6:
  814. # line 121 "ilex.l"
  815. {S_lex_ichar(AA_TOK); return (yylval =  AA_TOK);}
  816.     YY_BREAK
  817. case 7:
  818. # line 122 "ilex.l"
  819. {S_lex_ichar(AA_TOK); return (yylval =  AA_TOK);}
  820.     YY_BREAK
  821. case 8:
  822. # line 123 "ilex.l"
  823. {S_lex_ichar(I_TOK); return (yylval =  I_TOK);    }
  824.     YY_BREAK
  825. case 9:
  826. # line 124 "ilex.l"
  827. {S_lex_ichar(II_TOK); return (yylval =  II_TOK);}
  828.     YY_BREAK
  829. case 10:
  830. # line 125 "ilex.l"
  831. {S_lex_ichar(II_TOK); return (yylval =  II_TOK);}
  832.     YY_BREAK
  833. case 11:
  834. # line 126 "ilex.l"
  835. {S_lex_ichar(U_TOK); return (yylval =  U_TOK);    }
  836.     YY_BREAK
  837. case 12:
  838. # line 127 "ilex.l"
  839. {S_lex_ichar(UU_TOK); return (yylval =  UU_TOK);}
  840.     YY_BREAK
  841. case 13:
  842. # line 128 "ilex.l"
  843. {S_lex_ichar(UU_TOK); return (yylval =  UU_TOK);}
  844.     YY_BREAK
  845. case 14:
  846. # line 129 "ilex.l"
  847. {
  848.               switch(S_lang_tok) {
  849.               case TAMIL_TOK:
  850.                   /* unput('i'); ?? use yyless() here XXX */
  851.                   yyless(1);
  852.                   return (yylval =  RRA_TOK);
  853.                   break;
  854.               default:
  855.                   return (yylval =  RI_TOK);
  856.               }
  857.             }
  858.     YY_BREAK
  859. case 15:
  860. # line 140 "ilex.l"
  861. {
  862.               switch(S_lang_tok) {
  863.               case TAMIL_TOK:
  864.                   /* unput('I'); ?? use yyless() here XXX */
  865.                   yyless(1);
  866.                   return (yylval =  RRA_TOK);
  867.                   break;
  868.               default:
  869.                   return (yylval =  RII_TOK);
  870.               }
  871.             }
  872.     YY_BREAK
  873. case 16:
  874. # line 151 "ilex.l"
  875. {
  876.               switch(S_lang_tok) {
  877.               case TAMIL_TOK:
  878.                   /* unput('i'); ?? use yyless() here XXX */
  879.                   yyless(1);
  880.                   return (yylval =  LDA_TOK);
  881.                   break;
  882.               default:
  883.                   return (yylval =  LI_TOK);
  884.               }
  885.             }
  886.     YY_BREAK
  887. case 17:
  888. # line 162 "ilex.l"
  889. {
  890.               switch(S_lang_tok) {
  891.               case TAMIL_TOK:
  892.                   /* unput('I'); ?? use yyless() here XXX */
  893.                   yyless(1);
  894.                   return (yylval =  LDA_TOK);
  895.                   break;
  896.               default:
  897.                   return (yylval =  LII_TOK);
  898.               }
  899.             }
  900.     YY_BREAK
  901. case 18:
  902. # line 173 "ilex.l"
  903. {S_lex_ichar(AY_TOK); return (yylval =  AY_TOK);}
  904.     YY_BREAK
  905. case 19:
  906. # line 174 "ilex.l"
  907. {S_lex_ichar(AAY_TOK); return (yylval =  AAY_TOK);}
  908.     YY_BREAK
  909. case 20:
  910. # line 175 "ilex.l"
  911. {S_lex_ichar(AI_TOK); return (yylval =  AI_TOK);}
  912.     YY_BREAK
  913. case 21:
  914. # line 176 "ilex.l"
  915. {S_lex_ichar(O_TOK); return (yylval =  O_TOK);    }
  916.     YY_BREAK
  917. case 22:
  918. # line 177 "ilex.l"
  919. {S_lex_ichar(OO_TOK); return (yylval =  OO_TOK);}
  920.     YY_BREAK
  921. case 23:
  922. # line 178 "ilex.l"
  923. {S_lex_ichar(AU_TOK); return (yylval =  AU_TOK);}
  924.     YY_BREAK
  925. case 24:
  926. # line 179 "ilex.l"
  927. {S_lex_ichar(AM_TOK); return (yylval =  AM_TOK);}
  928.     YY_BREAK
  929. case 25:
  930. # line 180 "ilex.l"
  931. {S_lex_ichar(AHA_TOK); return (yylval =  AHA_TOK);}
  932.     YY_BREAK
  933. case 26:
  934. # line 181 "ilex.l"
  935. {S_lex_ichar(KA_TOK); return (yylval =  KA_TOK);}
  936.     YY_BREAK
  937. case 27:
  938. # line 182 "ilex.l"
  939. {S_lex_ichar(KADOT_TOK); return (yylval =  KADOT_TOK);}
  940.     YY_BREAK
  941. case 28:
  942. # line 183 "ilex.l"
  943. {S_lex_ichar(KHA_TOK); return (yylval =  KHA_TOK);}
  944.     YY_BREAK
  945. case 29:
  946. # line 184 "ilex.l"
  947. {S_lex_ichar(KHADOT_TOK); return (yylval = KHADOT_TOK);}
  948.     YY_BREAK
  949. case 30:
  950. # line 185 "ilex.l"
  951. {S_lex_ichar(GHA_TOK); return (yylval =  GHA_TOK);}
  952.     YY_BREAK
  953. case 31:
  954. # line 186 "ilex.l"
  955. {S_lex_ichar(GA_TOK); return (yylval =  GA_TOK);}
  956.     YY_BREAK
  957. case 32:
  958. # line 187 "ilex.l"
  959. {S_lex_ichar(GADOT_TOK); return (yylval =  GADOT_TOK);}
  960.     YY_BREAK
  961. case 33:
  962. # line 188 "ilex.l"
  963. {S_lex_ichar(NGA_TOK); return (yylval =  NGA_TOK);}
  964.     YY_BREAK
  965. case 34:
  966. # line 189 "ilex.l"
  967. {S_lex_ichar(CHHA_TOK); return (yylval =  CHHA_TOK);}
  968.     YY_BREAK
  969. case 35:
  970. # line 190 "ilex.l"
  971. {S_lex_ichar(CHA_TOK); return (yylval =  CHA_TOK);}
  972.     YY_BREAK
  973. case 36:
  974. # line 191 "ilex.l"
  975. {S_lex_ichar(JA_TOK); return (yylval =  JA_TOK);}
  976.     YY_BREAK
  977. case 37:
  978. # line 192 "ilex.l"
  979. {S_lex_ichar(JADOT_TOK); return (yylval =  JADOT_TOK);}
  980.     YY_BREAK
  981. case 38:
  982. # line 193 "ilex.l"
  983. {S_lex_ichar(JHA_TOK); return (yylval =  JHA_TOK);}
  984.     YY_BREAK
  985. case 39:
  986. # line 194 "ilex.l"
  987. {S_lex_ichar(JNH_TOK); return (yylval =  JNH_TOK);}
  988.     YY_BREAK
  989. case 40:
  990. # line 195 "ilex.l"
  991. {S_lex_ichar(TTA_TOK); return (yylval =  TTA_TOK);}
  992.     YY_BREAK
  993. case 41:
  994. # line 196 "ilex.l"
  995. {S_lex_ichar(TTHA_TOK); return (yylval =  TTHA_TOK);}
  996.     YY_BREAK
  997. case 42:
  998. # line 197 "ilex.l"
  999. {S_lex_ichar(DDA_TOK); return (yylval =  DDA_TOK);}
  1000.     YY_BREAK
  1001. case 43:
  1002. # line 198 "ilex.l"
  1003. {S_lex_ichar(DDADOT_TOK);return (yylval=DDADOT_TOK);}
  1004.     YY_BREAK
  1005. case 44:
  1006. # line 199 "ilex.l"
  1007. {S_lex_ichar(DDHA_TOK); return (yylval =  DDHA_TOK);}
  1008.     YY_BREAK
  1009. case 45:
  1010. # line 200 "ilex.l"
  1011. {S_lex_ichar(DDHADOT_TOK);return (yylval=DDHADOT_TOK);}
  1012.     YY_BREAK
  1013. case 46:
  1014. # line 201 "ilex.l"
  1015. {S_lex_ichar(NNA_TOK); return (yylval =  NNA_TOK);}
  1016.     YY_BREAK
  1017. case 47:
  1018. # line 202 "ilex.l"
  1019. {S_lex_ichar(TA_TOK); return (yylval =  TA_TOK);}
  1020.     YY_BREAK
  1021. case 48:
  1022. # line 203 "ilex.l"
  1023. {S_lex_ichar(THA_TOK); return (yylval =  THA_TOK);}
  1024.     YY_BREAK
  1025. case 49:
  1026. # line 204 "ilex.l"
  1027. {S_lex_ichar(DA_TOK); return (yylval =  DA_TOK);}
  1028.     YY_BREAK
  1029. case 50:
  1030. # line 205 "ilex.l"
  1031. {S_lex_ichar(DHA_TOK); return (yylval =  DHA_TOK);}
  1032.     YY_BREAK
  1033. case 51:
  1034. # line 206 "ilex.l"
  1035. {S_lex_ichar(NA_TOK); return (yylval =  NA_TOK);}
  1036.     YY_BREAK
  1037. case 52:
  1038. # line 207 "ilex.l"
  1039. {S_lex_ichar(PA_TOK); return (yylval =  PA_TOK);}
  1040.     YY_BREAK
  1041. case 53:
  1042. # line 208 "ilex.l"
  1043. {S_lex_ichar(PHA_TOK); return (yylval =  PHA_TOK);}
  1044.     YY_BREAK
  1045. case 54:
  1046. # line 209 "ilex.l"
  1047. {S_lex_ichar(PHADOT_TOK); return (yylval = PHADOT_TOK);}
  1048.     YY_BREAK
  1049. case 55:
  1050. # line 210 "ilex.l"
  1051. {S_lex_ichar(BHA_TOK); return (yylval =  BHA_TOK);}
  1052.     YY_BREAK
  1053. case 56:
  1054. # line 211 "ilex.l"
  1055. {S_lex_ichar(BA_TOK); return (yylval =  BA_TOK);}
  1056.     YY_BREAK
  1057. case 57:
  1058. # line 212 "ilex.l"
  1059. {S_lex_ichar(MA_TOK); return (yylval =  MA_TOK);}
  1060.     YY_BREAK
  1061. case 58:
  1062. # line 213 "ilex.l"
  1063. {S_lex_ichar(YA_TOK); return (yylval =  YA_TOK);}
  1064.     YY_BREAK
  1065. case 59:
  1066. # line 214 "ilex.l"
  1067. {S_lex_ichar(RA_TOK); return (yylval =  RA_TOK);}
  1068.     YY_BREAK
  1069. case 60:
  1070. # line 215 "ilex.l"
  1071. {S_lex_ichar(VA_TOK); return (yylval =  VA_TOK);}
  1072.     YY_BREAK
  1073. case 61:
  1074. # line 216 "ilex.l"
  1075. {S_lex_ichar(SHHA_TOK); return (yylval =  SHHA_TOK);}
  1076.     YY_BREAK
  1077. case 62:
  1078. # line 217 "ilex.l"
  1079. {S_lex_ichar(SHA_TOK); return (yylval =  SHA_TOK);}
  1080.     YY_BREAK
  1081. case 63:
  1082. # line 218 "ilex.l"
  1083. {S_lex_ichar(SA_TOK); return (yylval =  SA_TOK);}
  1084.     YY_BREAK
  1085. case 64:
  1086. # line 219 "ilex.l"
  1087. {S_lex_ichar(HA_TOK); return (yylval =  HA_TOK);}
  1088.     YY_BREAK
  1089. case 65:
  1090. # line 220 "ilex.l"
  1091. {S_lex_ichar(LDA_TOK); return (yylval =  LDA_TOK);}
  1092.     YY_BREAK
  1093. case 66:
  1094. # line 221 "ilex.l"
  1095. {S_lex_ichar(LDA_TOK); return (yylval =  LDA_TOK);}
  1096.     YY_BREAK
  1097. case 67:
  1098. # line 222 "ilex.l"
  1099. {S_lex_ichar(LA_TOK); return (yylval =  LA_TOK);}
  1100.     YY_BREAK
  1101. case 68:
  1102. # line 223 "ilex.l"
  1103. {S_lex_ichar(KSHA_TOK); return (yylval =  KSHA_TOK);}
  1104.     YY_BREAK
  1105. case 69:
  1106. # line 224 "ilex.l"
  1107. {S_lex_ichar(KSHA_TOK); return (yylval =  KSHA_TOK);}
  1108.     YY_BREAK
  1109. case 70:
  1110. # line 225 "ilex.l"
  1111. {S_lex_ichar(GYA_TOK); return (yylval =  GYA_TOK);}
  1112.     YY_BREAK
  1113. case 71:
  1114. # line 227 "ilex.l"
  1115. {
  1116.               switch(S_lang_tok) {
  1117.               case TAMIL_TOK:
  1118.                   return (yylval =  NYA_TOK);
  1119.                   break;
  1120.               default:
  1121.                   /* unput('y'); ?? use yyless() here XXX */
  1122.                   yyless(1);
  1123.                   return (yylval =  NA_TOK);
  1124.               }
  1125.             }
  1126.     YY_BREAK
  1127. case 72:
  1128. # line 238 "ilex.l"
  1129. { return (yylval =  NNX_TOK);} /* Tamil Only */
  1130.     YY_BREAK
  1131. case 73:
  1132. # line 240 "ilex.l"
  1133. {S_lex_ichar(RRA_TOK); return (yylval =  RRA_TOK);}
  1134.     YY_BREAK
  1135. case 74:
  1136. # line 242 "ilex.l"
  1137. {S_lex_ichar(AUM_TOK); return (yylval =  AUM_TOK);}
  1138.     YY_BREAK
  1139. case 75:
  1140. # line 243 "ilex.l"
  1141. {S_lex_ichar(SRI_TOK); return (yylval =  SRI_TOK);}
  1142.     YY_BREAK
  1143. case 76:
  1144. # line 244 "ilex.l"
  1145. {S_lex_ichar(RA_HALF_TOK);return (yylval=RA_HALF_TOK);}
  1146.     YY_BREAK
  1147. case 77:
  1148. # line 245 "ilex.l"
  1149. {S_lex_ichar(ANUSVARA_TOK);return(yylval=ANUSVARA_TOK);}
  1150.     YY_BREAK
  1151. case 78:
  1152. # line 246 "ilex.l"
  1153. {S_lex_ichar(VIRAAM_TOK);return(yylval=VIRAAM_TOK);}
  1154.     YY_BREAK
  1155. case 79:
  1156. # line 247 "ilex.l"
  1157. {S_lex_ichar(CHANDRA_TOK);return(yylval= CHANDRA_TOK);}
  1158.     YY_BREAK
  1159. case 80:
  1160. # line 248 "ilex.l"
  1161. {S_lex_ichar(CHANDRA_BN_TOK);return(yylval=CHANDRA_BN_TOK);}
  1162.     YY_BREAK
  1163. case 81:
  1164. # line 249 "ilex.l"
  1165. {S_lex_ichar(AVAGRAHA_TOK);return(yylval=AVAGRAHA_TOK);}
  1166.     YY_BREAK
  1167. case 82:
  1168. # line 251 "ilex.l"
  1169. {S_print("ichar \t");return (yylval =  BLANK_TOK);}
  1170.     YY_BREAK
  1171. case 83:
  1172. # line 252 "ilex.l"
  1173. {S_print("ichar \n");G_lineno++;return(yylval=NEWLINE_TOK);}
  1174.     YY_BREAK
  1175. case 84:
  1176. # line 254 "ilex.l"
  1177. {    S_print("ichar {}");
  1178.                 if (in_letter()) {
  1179.                 return (yylval=NOLIG_TOK);
  1180.             } else {
  1181.                 strcpy(G_endprev_str, yytext);
  1182.                 return (yylval=ENDPREV_TOK);
  1183.                 }
  1184.             }
  1185.     YY_BREAK
  1186. case 85:
  1187. # line 263 "ilex.l"
  1188. {    S_print("ichar .");
  1189.             strcpy(G_endprev_str, yytext);
  1190.             return (yylval=ENDPREV_TOK);
  1191.             }
  1192.     YY_BREAK
  1193. case 86:
  1194. # line 268 "ilex.l"
  1195. {
  1196.             S_print("dcommand a-z");
  1197.             BEGIN ITEXT;
  1198.             return (COMMAND_TOK);
  1199.         }
  1200.     YY_BREAK
  1201. case 87:
  1202. # line 274 "ilex.l"
  1203. {
  1204.             S_print("dcommand other");
  1205.             process_otherchar('\\');
  1206.             process_otherchar(yytext[0]);
  1207.             BEGIN ITEXT;
  1208.         }
  1209.     YY_BREAK
  1210. case 88:
  1211. # line 281 "ilex.l"
  1212. {BEGIN ITEXT; return (S_lang_tok = ILANG_TOK);}
  1213.     YY_BREAK
  1214. case 89:
  1215. # line 282 "ilex.l"
  1216. {BEGIN 0;     return (S_lang_tok = ENDLANG_TOK);}
  1217.     YY_BREAK
  1218. case 90:
  1219. # line 283 "ilex.l"
  1220. {BEGIN ITEXT; return (S_lang_tok = MARATHI_TOK);}
  1221.     YY_BREAK
  1222. case 91:
  1223. # line 284 "ilex.l"
  1224. {BEGIN 0;     return (S_lang_tok = ENDLANG_TOK);}
  1225.     YY_BREAK
  1226. case 92:
  1227. # line 285 "ilex.l"
  1228. {BEGIN ITEXT; return (S_lang_tok = HINDI_TOK);}
  1229.     YY_BREAK
  1230. case 93:
  1231. # line 286 "ilex.l"
  1232. {BEGIN 0;     return (S_lang_tok = ENDLANG_TOK);}
  1233.     YY_BREAK
  1234. case 94:
  1235. # line 287 "ilex.l"
  1236. {BEGIN ITEXT; return (S_lang_tok = TAMIL_TOK);}
  1237.     YY_BREAK
  1238. case 95:
  1239. # line 288 "ilex.l"
  1240. {BEGIN 0;     return (S_lang_tok = ENDLANG_TOK);}
  1241.     YY_BREAK
  1242. case 96:
  1243. # line 289 "ilex.l"
  1244. {BEGIN ITEXT; return (S_lang_tok = SANSKRIT_TOK);}
  1245.     YY_BREAK
  1246. case 97:
  1247. # line 290 "ilex.l"
  1248. {BEGIN 0;     return (S_lang_tok = ENDLANG_TOK);}
  1249.     YY_BREAK
  1250. case 98:
  1251. # line 291 "ilex.l"
  1252. {BEGIN ITEXT; return (S_lang_tok = BENGALI_TOK);}
  1253.     YY_BREAK
  1254. case 99:
  1255. # line 292 "ilex.l"
  1256. {BEGIN 0;     return (S_lang_tok = ENDLANG_TOK);}
  1257.     YY_BREAK
  1258. case 100:
  1259. # line 293 "ilex.l"
  1260. {BEGIN ITEXT; return (S_lang_tok = TELUGU_TOK);}
  1261.     YY_BREAK
  1262. case 101:
  1263. # line 294 "ilex.l"
  1264. {BEGIN 0;     return (S_lang_tok = ENDLANG_TOK);}
  1265.     YY_BREAK
  1266. case 102:
  1267. # line 295 "ilex.l"
  1268. {BEGIN ITEXT; return (S_lang_tok = MALAYALAM_TOK);}
  1269.     YY_BREAK
  1270. case 103:
  1271. # line 296 "ilex.l"
  1272. {BEGIN 0;     return (S_lang_tok = ENDLANG_TOK);}
  1273.     YY_BREAK
  1274. case 104:
  1275. # line 297 "ilex.l"
  1276. {BEGIN ITEXT; return (S_lang_tok = GUJARATI_TOK);}
  1277.     YY_BREAK
  1278. case 105:
  1279. # line 298 "ilex.l"
  1280. {BEGIN 0;     return (S_lang_tok = ENDLANG_TOK);}
  1281.     YY_BREAK
  1282. case 106:
  1283. # line 299 "ilex.l"
  1284. {BEGIN ITEXT; return (S_lang_tok = ORIYA_TOK);}
  1285.     YY_BREAK
  1286. case 107:
  1287. # line 300 "ilex.l"
  1288. {BEGIN 0;     return (S_lang_tok = ENDLANG_TOK);}
  1289.     YY_BREAK
  1290. case 108:
  1291. # line 301 "ilex.l"
  1292. {BEGIN ITEXT; return (S_lang_tok = KANNADA_TOK);}
  1293.     YY_BREAK
  1294. case 109:
  1295. # line 302 "ilex.l"
  1296. {BEGIN 0;     return (S_lang_tok = ENDLANG_TOK);}
  1297.     YY_BREAK
  1298. case 110:
  1299. # line 304 "ilex.l"
  1300. {yylval = ILANG_TOK; return SETIFM_TOK;}
  1301.     YY_BREAK
  1302. case 111:
  1303. # line 305 "ilex.l"
  1304. {yylval = MARATHI_TOK; return SETIFM_TOK;}
  1305.     YY_BREAK
  1306. case 112:
  1307. # line 306 "ilex.l"
  1308. {yylval = HINDI_TOK; return SETIFM_TOK;}
  1309.     YY_BREAK
  1310. case 113:
  1311. # line 307 "ilex.l"
  1312. {yylval = TAMIL_TOK; return SETIFM_TOK;}
  1313.     YY_BREAK
  1314. case 114:
  1315. # line 308 "ilex.l"
  1316. {yylval = SANSKRIT_TOK; return SETIFM_TOK;}
  1317.     YY_BREAK
  1318. case 115:
  1319. # line 309 "ilex.l"
  1320. {yylval = BENGALI_TOK; return SETIFM_TOK;}
  1321.     YY_BREAK
  1322. case 116:
  1323. # line 310 "ilex.l"
  1324. {yylval = TELUGU_TOK; return SETIFM_TOK;}
  1325.     YY_BREAK
  1326. case 117:
  1327. # line 311 "ilex.l"
  1328. {yylval = MALAYALAM_TOK; return SETIFM_TOK;}
  1329.     YY_BREAK
  1330. case 118:
  1331. # line 312 "ilex.l"
  1332. {yylval = GUJARATI_TOK; return SETIFM_TOK;}
  1333.     YY_BREAK
  1334. case 119:
  1335. # line 313 "ilex.l"
  1336. {yylval = ORIYA_TOK; return SETIFM_TOK;}
  1337.     YY_BREAK
  1338. case 120:
  1339. # line 314 "ilex.l"
  1340. {yylval = KANNADA_TOK; return SETIFM_TOK;}
  1341.     YY_BREAK
  1342. case 121:
  1343. # line 316 "ilex.l"
  1344. {yylval = ILANG_TOK; return SETFONT_TOK;}
  1345.     YY_BREAK
  1346. case 122:
  1347. # line 317 "ilex.l"
  1348. {yylval = HINDI_TOK; return SETFONT_TOK;}
  1349.     YY_BREAK
  1350. case 123:
  1351. # line 318 "ilex.l"
  1352. {yylval = TAMIL_TOK; return SETFONT_TOK;}
  1353.     YY_BREAK
  1354. case 124:
  1355. # line 319 "ilex.l"
  1356. {yylval = MARATHI_TOK; return SETFONT_TOK;}
  1357.     YY_BREAK
  1358. case 125:
  1359. # line 320 "ilex.l"
  1360. {yylval = SANSKRIT_TOK; return SETFONT_TOK;}
  1361.     YY_BREAK
  1362. case 126:
  1363. # line 321 "ilex.l"
  1364. {yylval = BENGALI_TOK; return SETFONT_TOK;}
  1365.     YY_BREAK
  1366. case 127:
  1367. # line 322 "ilex.l"
  1368. {yylval = TELUGU_TOK; return SETFONT_TOK;}
  1369.     YY_BREAK
  1370. case 128:
  1371. # line 323 "ilex.l"
  1372. {yylval = MALAYALAM_TOK;return SETFONT_TOK;}
  1373.     YY_BREAK
  1374. case 129:
  1375. # line 324 "ilex.l"
  1376. {yylval = GUJARATI_TOK; return SETFONT_TOK;}
  1377.     YY_BREAK
  1378. case 130:
  1379. # line 325 "ilex.l"
  1380. {yylval = ORIYA_TOK; return SETFONT_TOK;}
  1381.     YY_BREAK
  1382. case 131:
  1383. # line 326 "ilex.l"
  1384. {yylval = KANNADA_TOK; return SETFONT_TOK;}
  1385.     YY_BREAK
  1386. case 132:
  1387. # line 328 "ilex.l"
  1388. {S_print("got newline\n");G_lineno++; ECHO;        }
  1389.     YY_BREAK
  1390. case 133:
  1391. # line 329 "ilex.l"
  1392. {S_print("everything else! got .");ECHO;        }
  1393.     YY_BREAK
  1394. case 134:
  1395. # line 331 "ilex.l"
  1396. ECHO;
  1397.     YY_BREAK
  1398. case YY_STATE_EOF(INITIAL):
  1399. case YY_STATE_EOF(ITEXT):
  1400. case YY_STATE_EOF(DCOMMAND):
  1401.     yyterminate();
  1402.  
  1403.         case YY_END_OF_BUFFER:
  1404.         {
  1405.         /* amount of text matched not including the EOB char */
  1406.         int yy_amount_of_matched_text = yy_cp - yytext - 1;
  1407.  
  1408.         /* undo the effects of YY_DO_BEFORE_ACTION */
  1409.         *yy_cp = yy_hold_char;
  1410.  
  1411.         /* note that here we test for yy_c_buf_p "<=" to the position
  1412.          * of the first EOB in the buffer, since yy_c_buf_p will
  1413.          * already have been incremented past the NUL character
  1414.          * (since all states make transitions on EOB to the end-
  1415.          * of-buffer state).  Contrast this with the test in yyinput().
  1416.          */
  1417.         if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  1418.             /* this was really a NUL */
  1419.             {
  1420.             yy_state_type yy_next_state;
  1421.  
  1422.             yy_c_buf_p = yytext + yy_amount_of_matched_text;
  1423.  
  1424.             yy_current_state = yy_get_previous_state();
  1425.  
  1426.             /* okay, we're now positioned to make the
  1427.              * NUL transition.  We couldn't have
  1428.              * yy_get_previous_state() go ahead and do it
  1429.              * for us because it doesn't know how to deal
  1430.              * with the possibility of jamming (and we
  1431.              * don't want to build jamming into it because
  1432.              * then it will run more slowly)
  1433.              */
  1434.  
  1435.             yy_next_state = yy_try_NUL_trans( yy_current_state );
  1436.  
  1437.             yy_bp = yytext + YY_MORE_ADJ;
  1438.  
  1439.             if ( yy_next_state )
  1440.             {
  1441.             /* consume the NUL */
  1442.             yy_cp = ++yy_c_buf_p;
  1443.             yy_current_state = yy_next_state;
  1444.             goto yy_match;
  1445.             }
  1446.  
  1447.             else
  1448.             {
  1449.                 yy_cp = yy_last_accepting_cpos;
  1450.                 yy_current_state = yy_last_accepting_state;
  1451.             goto yy_find_action;
  1452.             }
  1453.             }
  1454.  
  1455.         else switch ( yy_get_next_buffer() )
  1456.             {
  1457.             case EOB_ACT_END_OF_FILE:
  1458.             {
  1459.             yy_did_buffer_switch_on_eof = 0;
  1460.  
  1461.             if ( yywrap() )
  1462.                 {
  1463.                 /* note: because we've taken care in
  1464.                  * yy_get_next_buffer() to have set up yytext,
  1465.                  * we can now set up yy_c_buf_p so that if some
  1466.                  * total hoser (like flex itself) wants
  1467.                  * to call the scanner after we return the
  1468.                  * YY_NULL, it'll still work - another YY_NULL
  1469.                  * will get returned.
  1470.                  */
  1471.                 yy_c_buf_p = yytext + YY_MORE_ADJ;
  1472.  
  1473.                 yy_act = YY_STATE_EOF((yy_start - 1) / 2);
  1474.                 goto do_action;
  1475.                 }
  1476.  
  1477.             else
  1478.                 {
  1479.                 if ( ! yy_did_buffer_switch_on_eof )
  1480.                 YY_NEW_FILE;
  1481.                 }
  1482.             }
  1483.             break;
  1484.  
  1485.             case EOB_ACT_CONTINUE_SCAN:
  1486.             yy_c_buf_p = yytext + yy_amount_of_matched_text;
  1487.  
  1488.             yy_current_state = yy_get_previous_state();
  1489.  
  1490.             yy_cp = yy_c_buf_p;
  1491.             yy_bp = yytext + YY_MORE_ADJ;
  1492.             goto yy_match;
  1493.  
  1494.             case EOB_ACT_LAST_MATCH:
  1495.             yy_c_buf_p =
  1496.                 &yy_current_buffer->yy_ch_buf[yy_n_chars];
  1497.  
  1498.             yy_current_state = yy_get_previous_state();
  1499.  
  1500.             yy_cp = yy_c_buf_p;
  1501.             yy_bp = yytext + YY_MORE_ADJ;
  1502.             goto yy_find_action;
  1503.             }
  1504.         break;
  1505.         }
  1506.  
  1507.         default:
  1508. #ifdef FLEX_DEBUG
  1509.         printf( "action # %d\n", yy_act );
  1510. #endif
  1511.         YY_FATAL_ERROR(
  1512.             "fatal flex scanner internal error--no action found" );
  1513.         }
  1514.     }
  1515.     }
  1516.  
  1517.  
  1518. /* yy_get_next_buffer - try to read in a new buffer
  1519.  *
  1520.  * synopsis
  1521.  *     int yy_get_next_buffer();
  1522.  *     
  1523.  * returns a code representing an action
  1524.  *     EOB_ACT_LAST_MATCH - 
  1525.  *     EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  1526.  *     EOB_ACT_END_OF_FILE - end of file
  1527.  */
  1528.  
  1529. static int yy_get_next_buffer()
  1530.  
  1531.     {
  1532.     register YY_CHAR *dest = yy_current_buffer->yy_ch_buf;
  1533.     register YY_CHAR *source = yytext - 1; /* copy prev. char, too */
  1534.     register int number_to_move, i;
  1535.     int ret_val;
  1536.  
  1537.     if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
  1538.     YY_FATAL_ERROR(
  1539.         "fatal flex scanner internal error--end of buffer missed" );
  1540.  
  1541.     /* try to read more data */
  1542.  
  1543.     /* first move last chars to start of buffer */
  1544.     number_to_move = yy_c_buf_p - yytext;
  1545.  
  1546.     for ( i = 0; i < number_to_move; ++i )
  1547.     *(dest++) = *(source++);
  1548.  
  1549.     if ( yy_current_buffer->yy_eof_status != EOF_NOT_SEEN )
  1550.     /* don't do the read, it's not guaranteed to return an EOF,
  1551.      * just force an EOF
  1552.      */
  1553.     yy_n_chars = 0;
  1554.  
  1555.     else
  1556.     {
  1557.     int num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1;
  1558.  
  1559.     if ( num_to_read > YY_READ_BUF_SIZE )
  1560.         num_to_read = YY_READ_BUF_SIZE;
  1561.  
  1562.     else if ( num_to_read <= 0 )
  1563.         YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" );
  1564.  
  1565.     /* read in more data */
  1566.     YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
  1567.           yy_n_chars, num_to_read );
  1568.     }
  1569.  
  1570.     if ( yy_n_chars == 0 )
  1571.     {
  1572.     if ( number_to_move == 1 )
  1573.         {
  1574.         ret_val = EOB_ACT_END_OF_FILE;
  1575.         yy_current_buffer->yy_eof_status = EOF_DONE;
  1576.         }
  1577.  
  1578.     else
  1579.         {
  1580.         ret_val = EOB_ACT_LAST_MATCH;
  1581.         yy_current_buffer->yy_eof_status = EOF_PENDING;
  1582.         }
  1583.     }
  1584.  
  1585.     else
  1586.     ret_val = EOB_ACT_CONTINUE_SCAN;
  1587.  
  1588.     yy_n_chars += number_to_move;
  1589.     yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
  1590.     yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
  1591.  
  1592.     /* yytext begins at the second character in yy_ch_buf; the first
  1593.      * character is the one which preceded it before reading in the latest
  1594.      * buffer; it needs to be kept around in case it's a newline, so
  1595.      * yy_get_previous_state() will have with '^' rules active
  1596.      */
  1597.  
  1598.     yytext = &yy_current_buffer->yy_ch_buf[1];
  1599.  
  1600.     return ( ret_val );
  1601.     }
  1602.  
  1603.  
  1604. /* yy_get_previous_state - get the state just before the EOB char was reached
  1605.  *
  1606.  * synopsis
  1607.  *     yy_state_type yy_get_previous_state();
  1608.  */
  1609.  
  1610. static yy_state_type yy_get_previous_state()
  1611.  
  1612.     {
  1613.     register yy_state_type yy_current_state;
  1614.     register YY_CHAR *yy_cp;
  1615.  
  1616.     yy_current_state = yy_start;
  1617.  
  1618.     for ( yy_cp = yytext + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
  1619.     {
  1620.     register YY_CHAR yy_c = (*yy_cp ? yy_ec[*yy_cp] : 1);
  1621.     if ( yy_accept[yy_current_state] )
  1622.         {
  1623.         yy_last_accepting_state = yy_current_state;
  1624.         yy_last_accepting_cpos = yy_cp;
  1625.         }
  1626.     while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1627.         {
  1628.         yy_current_state = yy_def[yy_current_state];
  1629.         if ( yy_current_state >= 395 )
  1630.         yy_c = yy_meta[yy_c];
  1631.         }
  1632.     yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  1633.     }
  1634.  
  1635.     return ( yy_current_state );
  1636.     }
  1637.  
  1638.  
  1639. /* yy_try_NUL_trans - try to make a transition on the NUL character
  1640.  *
  1641.  * synopsis
  1642.  *     next_state = yy_try_NUL_trans( current_state );
  1643.  */
  1644.  
  1645. #ifdef YY_USE_PROTOS
  1646. static yy_state_type yy_try_NUL_trans( register yy_state_type yy_current_state )
  1647. #else
  1648. static yy_state_type yy_try_NUL_trans( yy_current_state )
  1649. register yy_state_type yy_current_state;
  1650. #endif
  1651.  
  1652.     {
  1653.     register int yy_is_jam;
  1654.     register YY_CHAR *yy_cp = yy_c_buf_p;
  1655.  
  1656.     register YY_CHAR yy_c = 1;
  1657.     if ( yy_accept[yy_current_state] )
  1658.     {
  1659.     yy_last_accepting_state = yy_current_state;
  1660.     yy_last_accepting_cpos = yy_cp;
  1661.     }
  1662.     while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1663.     {
  1664.     yy_current_state = yy_def[yy_current_state];
  1665.     if ( yy_current_state >= 395 )
  1666.         yy_c = yy_meta[yy_c];
  1667.     }
  1668.     yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  1669.     yy_is_jam = (yy_current_state == 394);
  1670.  
  1671.     return ( yy_is_jam ? 0 : yy_current_state );
  1672.     }
  1673.  
  1674.  
  1675. #ifdef YY_USE_PROTOS
  1676. static void yyunput( YY_CHAR c, register YY_CHAR *yy_bp )
  1677. #else
  1678. static void yyunput( c, yy_bp )
  1679. YY_CHAR c;
  1680. register YY_CHAR *yy_bp;
  1681. #endif
  1682.  
  1683.     {
  1684.     register YY_CHAR *yy_cp = yy_c_buf_p;
  1685.  
  1686.     /* undo effects of setting up yytext */
  1687.     *yy_cp = yy_hold_char;
  1688.  
  1689.     if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  1690.     { /* need to shift things up to make room */
  1691.     register int number_to_move = yy_n_chars + 2; /* +2 for EOB chars */
  1692.     register YY_CHAR *dest =
  1693.         &yy_current_buffer->yy_ch_buf[yy_current_buffer->yy_buf_size + 2];
  1694.     register YY_CHAR *source =
  1695.         &yy_current_buffer->yy_ch_buf[number_to_move];
  1696.  
  1697.     while ( source > yy_current_buffer->yy_ch_buf )
  1698.         *--dest = *--source;
  1699.  
  1700.     yy_cp += dest - source;
  1701.     yy_bp += dest - source;
  1702.     yy_n_chars = yy_current_buffer->yy_buf_size;
  1703.  
  1704.     if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  1705.         YY_FATAL_ERROR( "flex scanner push-back overflow" );
  1706.     }
  1707.  
  1708.     if ( yy_cp > yy_bp && yy_cp[-1] == '\n' )
  1709.     yy_cp[-2] = '\n';
  1710.  
  1711.     *--yy_cp = c;
  1712.  
  1713.     /* note: the formal parameter *must* be called "yy_bp" for this
  1714.      *       macro to now work correctly
  1715.      */
  1716.     YY_DO_BEFORE_ACTION; /* set up yytext again */
  1717.     }
  1718.  
  1719.  
  1720. #ifdef __cplusplus
  1721. static int yyinput()
  1722. #else
  1723. static int input()
  1724. #endif
  1725.  
  1726.     {
  1727.     int c;
  1728.     YY_CHAR *yy_cp = yy_c_buf_p;
  1729.  
  1730.     *yy_cp = yy_hold_char;
  1731.  
  1732.     if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
  1733.     {
  1734.     /* yy_c_buf_p now points to the character we want to return.
  1735.      * If this occurs *before* the EOB characters, then it's a
  1736.      * valid NUL; if not, then we've hit the end of the buffer.
  1737.      */
  1738.     if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  1739.         /* this was really a NUL */
  1740.         *yy_c_buf_p = '\0';
  1741.  
  1742.     else
  1743.         { /* need more input */
  1744.         yytext = yy_c_buf_p;
  1745.         ++yy_c_buf_p;
  1746.  
  1747.         switch ( yy_get_next_buffer() )
  1748.         {
  1749.         case EOB_ACT_END_OF_FILE:
  1750.             {
  1751.             if ( yywrap() )
  1752.             {
  1753.             yy_c_buf_p = yytext + YY_MORE_ADJ;
  1754.             return ( EOF );
  1755.             }
  1756.  
  1757.             YY_NEW_FILE;
  1758.  
  1759. #ifdef __cplusplus
  1760.             return ( yyinput() );
  1761. #else
  1762.             return ( input() );
  1763. #endif
  1764.             }
  1765.             break;
  1766.  
  1767.         case EOB_ACT_CONTINUE_SCAN:
  1768.             yy_c_buf_p = yytext + YY_MORE_ADJ;
  1769.             break;
  1770.  
  1771.         case EOB_ACT_LAST_MATCH:
  1772. #ifdef __cplusplus
  1773.             YY_FATAL_ERROR( "unexpected last match in yyinput()" );
  1774. #else
  1775.             YY_FATAL_ERROR( "unexpected last match in input()" );
  1776. #endif
  1777.         }
  1778.         }
  1779.     }
  1780.  
  1781.     c = *yy_c_buf_p;
  1782.     yy_hold_char = *++yy_c_buf_p;
  1783.  
  1784.     return ( c );
  1785.     }
  1786.  
  1787.  
  1788. #ifdef YY_USE_PROTOS
  1789. void yyrestart( FILE *input_file )
  1790. #else
  1791. void yyrestart( input_file )
  1792. FILE *input_file;
  1793. #endif
  1794.  
  1795.     {
  1796.     yy_init_buffer( yy_current_buffer, input_file );
  1797.     yy_load_buffer_state();
  1798.     }
  1799.  
  1800.  
  1801. #ifdef YY_USE_PROTOS
  1802. void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
  1803. #else
  1804. void yy_switch_to_buffer( new_buffer )
  1805. YY_BUFFER_STATE new_buffer;
  1806. #endif
  1807.  
  1808.     {
  1809.     if ( yy_current_buffer == new_buffer )
  1810.     return;
  1811.  
  1812.     if ( yy_current_buffer )
  1813.     {
  1814.     /* flush out information for old buffer */
  1815.     *yy_c_buf_p = yy_hold_char;
  1816.     yy_current_buffer->yy_buf_pos = yy_c_buf_p;
  1817.     yy_current_buffer->yy_n_chars = yy_n_chars;
  1818.     }
  1819.  
  1820.     yy_current_buffer = new_buffer;
  1821.     yy_load_buffer_state();
  1822.  
  1823.     /* we don't actually know whether we did this switch during
  1824.      * EOF (yywrap()) processing, but the only time this flag
  1825.      * is looked at is after yywrap() is called, so it's safe
  1826.      * to go ahead and always set it.
  1827.      */
  1828.     yy_did_buffer_switch_on_eof = 1;
  1829.     }
  1830.  
  1831.  
  1832. #ifdef YY_USE_PROTOS
  1833. void yy_load_buffer_state( void )
  1834. #else
  1835. void yy_load_buffer_state()
  1836. #endif
  1837.  
  1838.     {
  1839.     yy_n_chars = yy_current_buffer->yy_n_chars;
  1840.     yytext = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
  1841.     yyin = yy_current_buffer->yy_input_file;
  1842.     yy_hold_char = *yy_c_buf_p;
  1843.     }
  1844.  
  1845.  
  1846. #ifdef YY_USE_PROTOS
  1847. YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
  1848. #else
  1849. YY_BUFFER_STATE yy_create_buffer( file, size )
  1850. FILE *file;
  1851. int size;
  1852. #endif
  1853.  
  1854.     {
  1855.     YY_BUFFER_STATE b;
  1856.  
  1857.     b = (YY_BUFFER_STATE) malloc( sizeof( struct yy_buffer_state ) );
  1858.  
  1859.     if ( ! b )
  1860.     YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  1861.  
  1862.     b->yy_buf_size = size;
  1863.  
  1864.     /* yy_ch_buf has to be 2 characters longer than the size given because
  1865.      * we need to put in 2 end-of-buffer characters.
  1866.      */
  1867.     b->yy_ch_buf = (YY_CHAR *) malloc( (unsigned) (b->yy_buf_size + 2) );
  1868.  
  1869.     if ( ! b->yy_ch_buf )
  1870.     YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  1871.  
  1872.     yy_init_buffer( b, file );
  1873.  
  1874.     return ( b );
  1875.     }
  1876.  
  1877.  
  1878. #ifdef YY_USE_PROTOS
  1879. void yy_delete_buffer( YY_BUFFER_STATE b )
  1880. #else
  1881. void yy_delete_buffer( b )
  1882. YY_BUFFER_STATE b;
  1883. #endif
  1884.  
  1885.     {
  1886.     if ( b == yy_current_buffer )
  1887.     yy_current_buffer = (YY_BUFFER_STATE) 0;
  1888.  
  1889.     free( (char *) b->yy_ch_buf );
  1890.     free( (char *) b );
  1891.     }
  1892.  
  1893.  
  1894. #ifdef YY_USE_PROTOS
  1895. void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
  1896. #else
  1897. void yy_init_buffer( b, file )
  1898. YY_BUFFER_STATE b;
  1899. FILE *file;
  1900. #endif
  1901.  
  1902.     {
  1903.     b->yy_input_file = file;
  1904.  
  1905.     /* we put in the '\n' and start reading from [1] so that an
  1906.      * initial match-at-newline will be true.
  1907.      */
  1908.  
  1909.     b->yy_ch_buf[0] = '\n';
  1910.     b->yy_n_chars = 1;
  1911.  
  1912.     /* we always need two end-of-buffer characters.  The first causes
  1913.      * a transition to the end-of-buffer state.  The second causes
  1914.      * a jam in that state.
  1915.      */
  1916.     b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
  1917.     b->yy_ch_buf[2] = YY_END_OF_BUFFER_CHAR;
  1918.  
  1919.     b->yy_buf_pos = &b->yy_ch_buf[1];
  1920.  
  1921.     b->yy_eof_status = EOF_NOT_SEEN;
  1922.     }
  1923. # line 331 "ilex.l"
  1924.  
  1925.  
  1926. static S_lex_ichar(int t)
  1927. {
  1928. #ifdef DEBUG
  1929.     if (t > 255) fprintf(stderr, "LEXER: have seen <%s> tok %d (I %d)\n",
  1930.                 yytext, t, _I_(t));
  1931.     else fprintf(stderr, "LEXER: seen char %c (dec %d)\n", t, t);
  1932. #endif /*DEBUG*/
  1933.     return TRUE;
  1934. }
  1935. static S_print(char* t)
  1936. {
  1937. #ifdef DEBUG
  1938.     fprintf(stderr, "LEXERprint: have seen <%s> rule is %s\n",
  1939.                 yytext, t);
  1940. #endif /*DEBUG*/
  1941.     return TRUE;
  1942. }
  1943.  
  1944. static S_skipcomments()
  1945. {
  1946.      int c;
  1947.      if (in_letter()) {
  1948.      G_endprev_str[0] = '\0';
  1949.      return (yylval=ENDPREV_TOK);
  1950.      } else {
  1951.      /* this the next time around, eat up the comment */
  1952.      putchar('%');
  1953.      while ( (c = input()) != EOF && c != '\n')
  1954.         putchar(c);
  1955.  
  1956.      G_lineno++;
  1957.      return (yylval=NEWLINE_TOK);
  1958.      }
  1959. }
  1960.  
  1961. #ifdef NOLEX
  1962. /* if the system is missing lex, add these functions */
  1963. #ifdef yywrap
  1964. #undef yywrap
  1965. #endif
  1966. int yywrap() { return 1; }
  1967.  
  1968. int yyless(int n) /* NOT TESTED!*/
  1969. {
  1970.     int i;
  1971.     extern int yyleng;
  1972.     for (i = yyleng - 1; i >= n; i --) unput(yytext[i]);
  1973. }
  1974. #endif
  1975.  
  1976.